home *** CD-ROM | disk | FTP | other *** search
- .bra {
- .ket }
-
- ; $VER Demo1 1.0 (20.9.98)
-
- echo "(Parent) - This shell script will launch a background process."
- echo "(Parent) - Make sure WaitSignal is in your PATH."
- echo "(Parent) - Current (parent) Process Number is $process."
- echo "(Parent) - Launching child process..."
-
- ; this is tricky! we give the parent's process number as an argument to
- ; enable the child to break the parent with the correct process number
- run Demo1Child $process
-
- echo "(Parent) - waiting for child's CTRL-F"
-
- WaitSignal F
-
- echo "All done."
-
-